Skip to main content
Version: current

Sessions - Get sessions

This API retrieves all sessions for a specific meeting including meeting details and speakers

Path Parameters
    meetingId string required

    The meeting ID for which to retrieve sessions

    Example: sm-ead69d8e-8c30-42f1-9798-8acfa5dd1277
Header Parameters
    Authorization string required

    You need an app created on the JioEvents Platform and using the app credentials you can create a JWT to access this API. The JWT should have an issuer and the key "app" with the app id generated from the Platform.

    Example: <Authentication_token_signed_using_secret_or_private_key>
Responses

Success


Schema
    meetingDetails object

    Details of the parent meeting

    topic string

    Topic/title of the meeting

    startTime date-time

    Start time of the meeting in ISO format

    topicMarkdown object

    Markdown topic configuration

    text string

    Markdown text content

    messageType string

    Type of message

    hash string

    Hash value

    speakers object[]

    List of speakers for the meeting

  • Array [
  • _id string

    Unique identifier for the speaker invite

    firstName string

    First name of the speaker

    lastName string

    Last name of the speaker

    role string

    Role of the speaker

    userId string

    Unique identifier for the user

    socialMediaLinks string[]

    Array of social media links

  • ]
  • sessions object[]

    List of sessions for the meeting

  • Array [
  • _id string

    Unique identifier for the session

    topic string

    Topic/title of the session

    description string

    Description of the session

    descriptionMarkdown object

    Markdown description configuration

    text string

    Markdown text content

    messageType string

    Type of message

    meetingId string

    Unique meeting ID for the session

    parentMeetingId string

    ID of the parent webinar/meeting

    type string

    Type of session

    startTime date-time

    Start time of the session in ISO format

    endTime date-time

    End time of the session in ISO format

    invites object[]

    Array of session invites

    status string

    Current status of the session

    isDeleted boolean

    Whether the session has been deleted

    cOn date-time

    Creation timestamp

    mOn date-time

    Last modification timestamp

    __v integer

    Version number

    invitedCoHosts object[]

    Array of invited co-hosts

    invitedSpeakers object[]

    Array of invited speakers

    broadcasting boolean

    Whether broadcasting is enabled

    preRecordedVideo object

    Pre-recorded video configuration

    enabled boolean

    Whether pre-recorded video is enabled

    loop integer

    Number of loops for pre-recorded video

    cohost string[]

    Array of co-host user IDs

    meetingUrl string

    URL for joining the session

  • ]
  • lastSessionDate date-time

    Date of the last session

Loading...